home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / base64.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  11KB  |  377 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''RFC 3548: Base16, Base32, Base64 Data Encodings'''
  5. import re
  6. import struct
  7. import binascii
  8. __all__ = [
  9.     'encode',
  10.     'decode',
  11.     'encodestring',
  12.     'decodestring',
  13.     'b64encode',
  14.     'b64decode',
  15.     'b32encode',
  16.     'b32decode',
  17.     'b16encode',
  18.     'b16decode',
  19.     'standard_b64encode',
  20.     'standard_b64decode',
  21.     'urlsafe_b64encode',
  22.     'urlsafe_b64decode']
  23. _translation = [ chr(_x) for _x in range(256) ]
  24. EMPTYSTRING = ''
  25.  
  26. def _translate(s, altchars):
  27.     translation = _translation[:]
  28.     for k, v in altchars.items():
  29.         translation[ord(k)] = v
  30.     
  31.     return s.translate(''.join(translation))
  32.  
  33.  
  34. def b64encode(s, altchars = None):
  35.     """Encode a string using Base64.
  36.  
  37.     s is the string to encode.  Optional altchars must be a string of at least
  38.     length 2 (additional characters are ignored) which specifies an
  39.     alternative alphabet for the '+' and '/' characters.  This allows an
  40.     application to e.g. generate url or filesystem safe Base64 strings.
  41.  
  42.     The encoded string is returned.
  43.     """
  44.     encoded = binascii.b2a_base64(s)[:-1]
  45.     if altchars is not None:
  46.         return _translate(encoded, {
  47.             '+': altchars[0],
  48.             '/': altchars[1] })
  49.     
  50.     return encoded
  51.  
  52.  
  53. def b64decode(s, altchars = None):
  54.     """Decode a Base64 encoded string.
  55.  
  56.     s is the string to decode.  Optional altchars must be a string of at least
  57.     length 2 (additional characters are ignored) which specifies the
  58.     alternative alphabet used instead of the '+' and '/' characters.
  59.  
  60.     The decoded string is returned.  A TypeError is raised if s were
  61.     incorrectly padded or if there are non-alphabet characters present in the
  62.     string.
  63.     """
  64.     if altchars is not None:
  65.         s = _translate(s, {
  66.             altchars[0]: '+',
  67.             altchars[1]: '/' })
  68.     
  69.     
  70.     try:
  71.         return binascii.a2b_base64(s)
  72.     except binascii.Error:
  73.         msg = None
  74.         raise TypeError(msg)
  75.  
  76.  
  77.  
  78. def standard_b64encode(s):
  79.     '''Encode a string using the standard Base64 alphabet.
  80.  
  81.     s is the string to encode.  The encoded string is returned.
  82.     '''
  83.     return b64encode(s)
  84.  
  85.  
  86. def standard_b64decode(s):
  87.     '''Decode a string encoded with the standard Base64 alphabet.
  88.  
  89.     s is the string to decode.  The decoded string is returned.  A TypeError
  90.     is raised if the string is incorrectly padded or if there are non-alphabet
  91.     characters present in the string.
  92.     '''
  93.     return b64decode(s)
  94.  
  95.  
  96. def urlsafe_b64encode(s):
  97.     """Encode a string using a url-safe Base64 alphabet.
  98.  
  99.     s is the string to encode.  The encoded string is returned.  The alphabet
  100.     uses '-' instead of '+' and '_' instead of '/'.
  101.     """
  102.     return b64encode(s, '-_')
  103.  
  104.  
  105. def urlsafe_b64decode(s):
  106.     """Decode a string encoded with the standard Base64 alphabet.
  107.  
  108.     s is the string to decode.  The decoded string is returned.  A TypeError
  109.     is raised if the string is incorrectly padded or if there are non-alphabet
  110.     characters present in the string.
  111.  
  112.     The alphabet uses '-' instead of '+' and '_' instead of '/'.
  113.     """
  114.     return b64decode(s, '-_')
  115.  
  116. _b32alphabet = {
  117.     0: 'A',
  118.     9: 'J',
  119.     18: 'S',
  120.     27: '3',
  121.     1: 'B',
  122.     10: 'K',
  123.     19: 'T',
  124.     28: '4',
  125.     2: 'C',
  126.     11: 'L',
  127.     20: 'U',
  128.     29: '5',
  129.     3: 'D',
  130.     12: 'M',
  131.     21: 'V',
  132.     30: '6',
  133.     4: 'E',
  134.     13: 'N',
  135.     22: 'W',
  136.     31: '7',
  137.     5: 'F',
  138.     14: 'O',
  139.     23: 'X',
  140.     6: 'G',
  141.     15: 'P',
  142.     24: 'Y',
  143.     7: 'H',
  144.     16: 'Q',
  145.     25: 'Z',
  146.     8: 'I',
  147.     17: 'R',
  148.     26: '2' }
  149. _b32tab = [ v for v in _b32alphabet.values() ]
  150. _b32rev = []([ (v, long(k)) for k, v in _b32alphabet.items() ])
  151.  
  152. def b32encode(s):
  153.     '''Encode a string using Base32.
  154.  
  155.     s is the string to encode.  The encoded string is returned.
  156.     '''
  157.     parts = []
  158.     (quanta, leftover) = divmod(len(s), 5)
  159.     if leftover:
  160.         s += '\x00' * (5 - leftover)
  161.         quanta += 1
  162.     
  163.     for i in range(quanta):
  164.         (c1, c2, c3) = struct.unpack('!HHB', s[i * 5:(i + 1) * 5])
  165.         c2 += (c1 & 1) << 16
  166.         c3 += (c2 & 3) << 8
  167.         parts.extend([
  168.             _b32tab[c1 >> 11],
  169.             _b32tab[c1 >> 6 & 31],
  170.             _b32tab[c1 >> 1 & 31],
  171.             _b32tab[c2 >> 12],
  172.             _b32tab[c2 >> 7 & 31],
  173.             _b32tab[c2 >> 2 & 31],
  174.             _b32tab[c3 >> 5],
  175.             _b32tab[c3 & 31]])
  176.     
  177.     encoded = EMPTYSTRING.join(parts)
  178.     if leftover == 1:
  179.         return encoded[:-6] + '======'
  180.     elif leftover == 2:
  181.         return encoded[:-4] + '===='
  182.     elif leftover == 3:
  183.         return encoded[:-3] + '==='
  184.     elif leftover == 4:
  185.         return encoded[:-1] + '='
  186.     
  187.     return encoded
  188.  
  189.  
  190. def b32decode(s, casefold = False, map01 = None):
  191.     '''Decode a Base32 encoded string.
  192.  
  193.     s is the string to decode.  Optional casefold is a flag specifying whether
  194.     a lowercase alphabet is acceptable as input.  For security purposes, the
  195.     default is False.
  196.  
  197.     RFC 3548 allows for optional mapping of the digit 0 (zero) to the letter O
  198.     (oh), and for optional mapping of the digit 1 (one) to either the letter I
  199.     (eye) or letter L (el).  The optional argument map01 when not None,
  200.     specifies which letter the digit 1 should be mapped to (when map01 is not
  201.     None, the digit 0 is always mapped to the letter O).  For security
  202.     purposes the default is None, so that 0 and 1 are not allowed in the
  203.     input.
  204.  
  205.     The decoded string is returned.  A TypeError is raised if s were
  206.     incorrectly padded or if there are non-alphabet characters present in the
  207.     string.
  208.     '''
  209.     (quanta, leftover) = divmod(len(s), 8)
  210.     if leftover:
  211.         raise TypeError('Incorrect padding')
  212.     
  213.     if map01:
  214.         s = _translate(s, {
  215.             '0': 'O',
  216.             '1': map01 })
  217.     
  218.     if casefold:
  219.         s = s.upper()
  220.     
  221.     padchars = 0
  222.     mo = re.search('(?P<pad>[=]*)$', s)
  223.     if mo:
  224.         padchars = len(mo.group('pad'))
  225.         if padchars > 0:
  226.             s = s[:-padchars]
  227.         
  228.     
  229.     parts = []
  230.     acc = 0
  231.     shift = 35
  232.     for c in s:
  233.         val = _b32rev.get(c)
  234.         if val is None:
  235.             raise TypeError('Non-base32 digit found')
  236.         
  237.         acc += _b32rev[c] << shift
  238.         shift -= 5
  239.         if shift < 0:
  240.             parts.append(binascii.unhexlify('%010x' % acc))
  241.             acc = 0
  242.             shift = 35
  243.             continue
  244.     
  245.     last = binascii.unhexlify('%010x' % acc)
  246.     if padchars == 0:
  247.         last = ''
  248.     elif padchars == 1:
  249.         last = last[:-1]
  250.     elif padchars == 3:
  251.         last = last[:-2]
  252.     elif padchars == 4:
  253.         last = last[:-3]
  254.     elif padchars == 6:
  255.         last = last[:-4]
  256.     else:
  257.         raise TypeError('Incorrect padding')
  258.     parts.append(last)
  259.     return EMPTYSTRING.join(parts)
  260.  
  261.  
  262. def b16encode(s):
  263.     '''Encode a string using Base16.
  264.  
  265.     s is the string to encode.  The encoded string is returned.
  266.     '''
  267.     return binascii.hexlify(s).upper()
  268.  
  269.  
  270. def b16decode(s, casefold = False):
  271.     '''Decode a Base16 encoded string.
  272.  
  273.     s is the string to decode.  Optional casefold is a flag specifying whether
  274.     a lowercase alphabet is acceptable as input.  For security purposes, the
  275.     default is False.
  276.  
  277.     The decoded string is returned.  A TypeError is raised if s were
  278.     incorrectly padded or if there are non-alphabet characters present in the
  279.     string.
  280.     '''
  281.     if casefold:
  282.         s = s.upper()
  283.     
  284.     if re.search('[^0-9A-F]', s):
  285.         raise TypeError('Non-base16 digit found')
  286.     
  287.     return binascii.unhexlify(s)
  288.  
  289. MAXLINESIZE = 76
  290. MAXBINSIZE = (MAXLINESIZE // 4) * 3
  291.  
  292. def encode(input, output):
  293.     '''Encode a file.'''
  294.     while True:
  295.         s = input.read(MAXBINSIZE)
  296.         if not s:
  297.             break
  298.         
  299.         while len(s) < MAXBINSIZE:
  300.             ns = input.read(MAXBINSIZE - len(s))
  301.             if not ns:
  302.                 break
  303.             
  304.             s += ns
  305.         line = binascii.b2a_base64(s)
  306.         output.write(line)
  307.  
  308.  
  309. def decode(input, output):
  310.     '''Decode a file.'''
  311.     while True:
  312.         line = input.readline()
  313.         if not line:
  314.             break
  315.         
  316.         s = binascii.a2b_base64(line)
  317.         output.write(s)
  318.  
  319.  
  320. def encodestring(s):
  321.     '''Encode a string.'''
  322.     pieces = []
  323.     for i in range(0, len(s), MAXBINSIZE):
  324.         chunk = s[i:i + MAXBINSIZE]
  325.         pieces.append(binascii.b2a_base64(chunk))
  326.     
  327.     return ''.join(pieces)
  328.  
  329.  
  330. def decodestring(s):
  331.     '''Decode a string.'''
  332.     return binascii.a2b_base64(s)
  333.  
  334.  
  335. def test():
  336.     '''Small test program'''
  337.     import sys as sys
  338.     import getopt as getopt
  339.     
  340.     try:
  341.         (opts, args) = getopt.getopt(sys.argv[1:], 'deut')
  342.     except getopt.error:
  343.         msg = None
  344.         sys.stdout = sys.stderr
  345.         print msg
  346.         print "usage: %s [-d|-e|-u|-t] [file|-]\n        -d, -u: decode\n        -e: encode (default)\n        -t: encode and decode string 'Aladdin:open sesame'" % sys.argv[0]
  347.         sys.exit(2)
  348.  
  349.     func = encode
  350.     for o, a in opts:
  351.         if o == '-e':
  352.             func = encode
  353.         
  354.         if o == '-d':
  355.             func = decode
  356.         
  357.         if o == '-u':
  358.             func = decode
  359.         
  360.         if o == '-t':
  361.             test1()
  362.             return None
  363.             continue
  364.     
  365.     if args and args[0] != '-':
  366.         func(open(args[0], 'rb'), sys.stdout)
  367.     else:
  368.         func(sys.stdin, sys.stdout)
  369.  
  370.  
  371. def test1():
  372.     s0 = 'Aladdin:open sesame'
  373.     s1 = encodestring(s0)
  374.     s2 = decodestring(s1)
  375.     print s0, repr(s1), s2
  376.  
  377.